home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / serial / callback.001 / callback~ / callback / lib / dbase / dbase.p < prev    next >
Text File  |  1996-07-30  |  792b  |  37 lines

  1. #ifndef _dbase_P_
  2. #define _dbase_P_
  3.  
  4. #include <time.h>
  5. #include <sys/stat.h>
  6. #include <unistd.h>
  7. #include <string.h>
  8. #include <ctype.h>
  9.  
  10. #include "dbase.h"
  11.  
  12. #include "../error/error.h"
  13. #include "../mem/mem.h"                      
  14. #include "../log/log.h"
  15. #include "../../configure.h"
  16.  
  17. #define PHONE "$PHONE"
  18.  
  19. char *linename(char *name, char *line);
  20. char *append_line(char *file, char *line);
  21. unsigned ageof(char *fname);
  22. void writestate (int st, unsigned uid);
  23. void copyfile (char *in, char *out);
  24. void cpfile(FILE *inf, FILE *outf);
  25. int  to_activefile(int dest, FILE *outf, FILE *inf);
  26. void make_activefile(unsigned uid, int dest);
  27. char *fgetline(FILE *inf);
  28. char *nologin(char *line);
  29. void tellstate(char *line);
  30.  
  31. extern unsigned
  32.     maxage;
  33. extern char
  34.     *filename[];
  35.  
  36. #endif  _dbase_P_
  37.